Adding TDS (aka Microsoft SQL) to dialects. #18
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello! I'm working on an ETL project that uses node-orm2, which utilizes your query library. I would like this project to be able to talk to Microsoft SQL via Tedious to get the widest SQL coverage available. In order to do that, I need node-orm2 to talk to MSSQL---and in order to do /that/, I need node-sql-query to speak its dialect.
Since the library itself is pretty well organized, it was fairly trivial to add a dialect for MSSQL. I'm submitting this pull request so that others might benefit. I've also created a unit test module for the new TDS dialect (based on MySql) and made sure it passes all checks.
Hopefully this will help you guys out. If there's anything you need from me to accept the request, please let me know. (Or if you just want to reject it outright, I guess that works too!)